home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / operator_context.sql < prev    next >
Text File  |  2000-05-12  |  859b  |  22 lines

  1. /* RCSVER $Id: operator_context.sql,v 1.2 2000-02-23 14:32:49-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        operator_context.sql
  6. * Date:        05/31/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the operator_context table. This table contains
  9. *               derived probed data from the shift/relief start records.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE operator_context
  13. (
  14.     op_context_id         NUMBER(38),
  15.     user_id            NUMBER(38),
  16.     farebox_glid        NUMBER(38),    
  17.     user_date        DATE,        /* user_id date/time */
  18.     probe_context_id    NUMBER(38),    /* references probe_context */
  19.     config_num        NUMBER(38),
  20.         CONSTRAINT pk_operator_context PRIMARY KEY (op_context_id)
  21. );
  22.